home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / n-z / raystorexa / arexx / coin.ray < prev    next >
Text File  |  1995-10-21  |  1KB  |  61 lines

  1. /***************
  2.  * NAME:        coin.ray
  3.  * VERSION:     1.0 09.09.1995
  4.  * DESCRIPTION: Jumping coin animation with motion blur
  5.  * AUTHORS:     Andreas Heumann
  6.  * BUGS:        none
  7.  * TO DO:       none
  8.  * HISTORY:
  9.  *    DATE     NAME  COMMENT
  10.  *    09.09.95 ah    initial release
  11.  ***************/
  12.  
  13. signal on error
  14.  
  15. options results
  16.  
  17. IF ~show('P','RAYSTORM') THEN DO
  18.     address COMMAND 'run >NIL: <NIL: /RayStorm'
  19.     address COMMAND WaitForPort RAYSTORM
  20. END  
  21.  
  22. address RAYSTORM
  23.  
  24. 'OBJECTPATH /objects'
  25.  
  26. 'SETSCREEN 160 128'
  27. 'SETCAMERA <0,4,9> <0,3.5,0> <0,1,0> 68.75 55'
  28. 'SETWORLD [0,0,100]'
  29. 'POINTLIGHT <0,4,9> SHADOW'
  30.  
  31. 'NEWACTOR COIN <3,0.1,0>'
  32.  
  33. frames = 30
  34. vy = .8
  35. y = 1
  36. do i=0 to frames
  37.     'POSITION 'i' 'i+1' <'3-((i+1)/(frames/6))','y',0>'
  38.     y = y + vy
  39.     vy = vy - (1.724/frames)
  40.     'ALIGNMENT 'i i+1' <0,0,24*(i+1)>'
  41. end
  42.  
  43. 'LOADOBJ coin.iob <3,0,0> <0,0,0> <1,1,1> ACTOR=COIN'
  44.  
  45. 'DISTRIB 3'
  46.  
  47. do i=0 to frames
  48.     'STARTRENDER QUICK FROM 'i' TO 'i+1
  49.     'SAVEPIC coin' || RIGHT(i+1,4,0) || '.iff'
  50. end
  51.  
  52. 'CLEANUP'
  53.  
  54. exit 0
  55.  
  56. error:
  57. say "Error" rc "in line" sigl ":"
  58. GETERRORSTR rc
  59. say result
  60. exit 0
  61.